Table: The Documents submenu.
Documents LATEX Command Command Key
Letter
 \documentstyle[]{letter}
 \begin{document}
 ...
 \end{document}
 
Article
 \documentstyle[]{article}
 \begin{document}
 ...
 \end{document}
 
Report
 \documentstyle[]{report}
 \begin{document}
 ...
 \end{document}
 
Book
 \documentstyle[]{book}
 \begin{document}
 ...
 \end{document}
 
Custom...
 \documentstyle[]{<name>}
 \begin{document}
 ...
 \end{document}
 



Table: The Sectioning submenu.
Sectioning LATEX Command Command Key
Part \part{}  
Chapter \chapter{}  
Section \section{}  
Subsection \subsection{}  
Subsubsection \subsubsection{}  
Paragraph \paragraph{}  
Subparagraph \subparagraph{}  



Table: The Text Style submenu.
Text Style LATEX Command Command Key
Roman {\rm } CMD SHF R
Bold {\bf } CMD SHF B
Italic {\it \/} CMD SHF I
Emphatic {\em \/} CMD SHF E
Slanted {\sl \/} CMD SHF S
Sans Serif {\sf } CMD SHF W
SMALL CAPS {\sc } CMD SHF H
Typewriter {\tt } CMD SHF T



Table: The Text Size submenu.
Text Size LATEX Command Command Key
Tiny {\tiny }  
Smallest {\scriptsize }  
Smaller {\footnotesize }  
Small {\small }  
Normal {\normalsize }  
Large {\large }  
Larger {\Large }  
Largest {\LARGE }  
Huge {\huge }  
Gigantic {\Huge }  



Environments LATEX Command Command Key
Enumerate...
 \begin{enumerate}
  ...
 \end{enumerate}
OPT F7
Itemize...
 \begin{itemize}
  ...
 \end{itemize}
OPT SHF F7
Description...
 \begin{description}
  ...
 \end{description}
OPT CTL F7
Tabular...
 \begin{tabular}{...}
  ...
 \end{tabular}
OPT F8